home *** CD-ROM | disk | FTP | other *** search
- on mouseUp
- global Clips, fullscreenG
- put "inside 302"
- put "fullscreenG", fullscreenG
- if fullscreenG = 1 then
- puppetSprite(48, 1)
- set the visible of sprite 48 to 0
- puppetSprite(48, 0)
- setbarB()
- ChangeScreenSize(Clips, "160,140", 1)
- go("F2")
- updateStage()
- set fullscreenG to 0
- end if
- updateStage()
- end
-
- on enterFrame
- repeat with x = 3 to 7
- if rollOver(x) = 1 then
- puppetSprite(x, 1)
- set the visible of sprite x to 1
- puppetSprite(x, 0)
- end if
- if rollOver(x) = 0 then
- puppetSprite(x, 1)
- set the visible of sprite x to 0
- puppetSprite(x, 0)
- end if
- end repeat
- end
-
- on exitFrame
- play done
- go("160")
- end
-